/* js/blocker.css */
.blk-blur {
  filter: blur(6px);
  /* 🔹 ELIMINAMOS pointer-events: none; para que el JS pueda detectar el clic y redirigirte */
  user-select: none !important;
  cursor: pointer !important; /* Muestra la manita para indicar que pueden hacer clic */
}

.blk-overlay {
  position: relative;
}
.blk-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.25);
  pointer-events: none; /* Esto está bien porque el clic lo captura el contenedor principal */
}

.blk-image-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blk-image-wrapper img {
  max-width: 100%;
  height: auto;
  opacity: 0.9;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.blk-image-wrapper img:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.blk-blur-inline {
  filter: blur(6px);
  display: inline-block;
}
/* ============================================================
   TAMPER GUARD — overlay de lockout
   ============================================================ */
#af-tamper-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(10, 15, 25, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Inter, sans-serif;
  user-select: none;
  -webkit-user-select: none;
}

.af-tamper-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: af-tamper-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes af-tamper-in {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

.af-tamper-icon {
  font-size: 52px;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}

.af-tamper-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

.af-tamper-msg {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.af-tamper-countdown {
  font-size: 52px;
  font-weight: 800;
  color: #d93025;
  letter-spacing: -1px;
  line-height: 1;
  padding: 12px 28px;
  border-radius: 12px;
  background: #fff3f2;
  border: 2px solid #fbc9c5;
  min-width: 140px;
  font-variant-numeric: tabular-nums;
}

.af-tamper-sub {
  font-size: 12px;
  color: #999;
  margin: 0;
}